home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / misc / compsci / pspice51.cpt / PSpice v5.1 / PSpice 5.1 / Eval.Out < prev    next >
Encoding:
Text File  |  1992-02-12  |  52.4 KB  |  1,175 lines  |  [TEXT/MSWD]

  1.  
  2. **** 02/12/92 08:23:22 *********** Evaluation PSpice (Jan 1992) **************
  3.  
  4.  EVAL.cir - An Illustration of PSpice Capabilities
  5.  
  6.  
  7.  ****     CIRCUIT DESCRIPTION
  8.  
  9.  
  10. ******************************************************************************
  11.  
  12.  
  13.  
  14. *
  15. * This circuit, a differential pair driving a comparator and a counter,
  16. * shows many of the capabilities of PSpice.
  17. * It creates a large amount of output for such a small circuit.  Normally,
  18. * only a few kinds of analysis, such as transient analysis, would be run.
  19. *
  20. * This command sets options for the run.
  21. .OPT ACCT NOMOD NOPAGE RELTOL=.001
  22.  
  23. * Sets the width of the output to 80 columns.
  24. .WIDTH OUT=80
  25.  
  26. * Sets the temperature for the run to 35 degrees celsius.
  27. .TEMP 35
  28.  
  29. * This command does a DC sweep.  The voltage source VIN is swept from
  30. *   -0.125 volts to 0.125 volts in steps of 0.005 volts.  The non-linear
  31. *   device equations are used.
  32. .DC VIN -0.125 0.125 0.005
  33.  
  34. * There is no command to do a small-signal bias point calculation.  It
  35. *   is done automatically after the DC sweep is finished.  The non-linear
  36. *   device equations are used to find the bias point.  Then, the linearized,
  37. *   small-signal equivalent circuit at the bias point is saved for the .TF,
  38. *   .SENS, .AC, and .NOISE analysis.  This command prints out the small-
  39. *   signal parameters for each device.
  40. .OP
  41.  
  42. * This command does a small-signal transfer function calculation assuming
  43. *   VIN is the input and V(5), the voltage at node 5, is the output.
  44. .TF V(5) VIN
  45.  
  46. * This does an AC analysis.  The real and imaginary response of the circuit
  47. *   is calculated as the inputs are swept from 100 kilohertz to 10 gigahertz
  48. *   by decades with 10 points per decade.  The only AC input this circuit has
  49. *   is VIN.  This is a linear analysis.
  50. .AC DEC 10 100KHZ 10GHZ
  51.  
  52. * This command does noise calculations during the AC analysis.  Each
  53. *   device's noise contribution is calculated and propogated to node 5.
  54. *   All the contributions are rms-summed at node 5.  Besides the total
  55. *   output noise printout done for every frequency, a detailed table of
  56. *   each device's contribution is done every 30'th frequency.
  57. .NOISE V(5) VIN 30
  58.  
  59. * This command does a transient analysis.  It first re-calculates the
  60. *   circuit's bias point, then calculates the circuit's time response
  61. *   from 0 nanoseconds to 1 microsecond using the full, non-linear device
  62. *   equations, including non-linear capacitances.  PSpice uses a variable
  63. *   time step for the calculations, but this command causes the results
  64. *   to be interpolated onto a 5 nanosecond print interval.  Transient
  65. *   analysis is the most frequently used analysis in PSpice.
  66. .TRAN 20NS 5uS
  67.  
  68. * This does a harmonic decomposition on the waveform V(5) calculated
  69. *   during transient analysis.  It calculates the magnitude and phase
  70. *   of the fundamental (5 megahertz) and the first eight harmonics.
  71. *   The graphics post-processor, Probe, goes further and contains
  72. *   a full FFT, allowing complete spectra to be displayed.
  73. .FOUR 1MEG V(5)
  74.  
  75. * This command does a Monte Carlo analysis of the circuit.  It runs
  76. *   the DC sweep 5 times using the tolerances in .MODEL statements
  77. *   and compares the waveform V(4,5) from each run against the nominal
  78. *   V(4,5).  It then lists a table of each run's deviation from the
  79. *   nominal.  The Monte Carlo option can also do Worst Case and Sensitivity
  80. *   analysis.
  81. .MC 5 DC V(4,5) YMAX
  82.  
  83. * PSpice allows parameters to be defined and used in expressions
  84. *   throughout the circuit file.  Parameters may also be passed into
  85. *   subcircuits as arguments and used inside.  Here, we define a
  86. *   fudge factor for the supply voltages.
  87. .PARAM FACTOR=1.2
  88.  
  89. * The following statements describe the circuit to PSpice.  It is a
  90. *   simple differential pair, with +12 and -12 volts as the supplies.
  91.  
  92. * VIN is the input for this circuit.  It has an amplitude during AC analysis
  93. *   of 1 volt and a sine waveform during transient of .1 volt at 5 megahertz.
  94. VIN 100 0 AC 1 SIN(0 0.1 1MEG)
  95.  
  96. * The power supplies are + and - SUPPLY volts.  As mentioned above,
  97. *   expressions containing parameters can be used for values throughout
  98. *   the circuit file.  Expressions are enclosed by "{" and "}" and allow
  99. *   arithmetic expressions.
  100. VCC 101 0 DC {10*FACTOR}
  101. VEE 102 0 {-10*FACTOR}
  102.  
  103. * The transistors' nodes are in the order collector - base - emitter.
  104. *   All transistors must refer to a model (QNL in this case).
  105. Q1 4 2 6 QNL
  106. Q2 5 3 6 QNL
  107.  
  108. * Models for resistors are optional.  If used they can specify such things
  109. *   as scaling, temperature coefficients, and tolerances.
  110. RS1 100 2 1K
  111. RS2 3 0 1K
  112. RC1 4 101 CRES 10K
  113. RC2 5 101 CRES 10K
  114. Q3 6 7 102 QNL
  115. Q4 7 7 102 QNL
  116. RBIAS 7 101 20K
  117. CLOAD 4 5 5PF
  118.  
  119. * This statement describes the CRES resistor by giving the values for
  120. *   the parameters.  Each type of model has its own set of parameters.
  121. *   All parameters have default values.  In CRES we have set the scaling
  122. *   factor to 1, the linear temperature coefficient to .02, and the
  123. *   quadratic temperature coefficient to .0045, and given each resistor
  124. *   a 5% tolerance on its value during Monte Carlo analysis.
  125. .model CRES res (
  126. +       R=1 DEV 5%      TC1=.02
  127. +       TC2=.0045
  128. +       )
  129. * The bipolar transistor model is the Gummel-Poon model.  It uses the
  130. *   same equations as in the UC Berkeley Spice program.  There are
  131. *   actually 55 model parameters, but most of these are for second-order
  132. *   effects that are rarely used.  Most bipolar models for realistic
  133. *   circuits specify between 12 and 25 parameters and default the rest.
  134. *   Here, we have set the forward beta to 80, the base resistance to
  135. *   100 ohms, the collector-substrate capacitance to 2 picofarads, the
  136. *   forward transit time to 0.3 nanoseconds, the reverse transit time to
  137. *   6 nanoseconds, the base-emitter capacitance to 3 picofarads, the
  138. *   base-collector capacitance to 2 picofarads, and the forward Early
  139. *   voltage to 50 volts.  The capacitances are actually voltage dependent.
  140. *   These numbers are the zero-bias values.
  141. .model QNL npn (
  142. +       BF=80   RB=100
  143. +       CCS=2PF TF=0.3NS
  144. +       TR=6NS  CJE=3PF
  145. +       CJC=2PF VA=50
  146. +       )
  147. * The Analog Behavioral Modeling option allows one to define a transfer
  148. *   function by formula and/or by table.  Here, we implement an ideal
  149. *   comparator to convert the differential output across nodes 4 and 5 into
  150. *   a TTL output on node 'comp_out'.  The voltage across 4 and 5 is
  151. *   multiplied by 1e3 and that value is looked up in the table.  The
  152. *   table has an output of 0v for inputs < -5, 5v for inputs > 5,
  153. *   and output=input in between. So, the comparator has a gain of 1,000
  154. *   and saturates at 0v and 5v.
  155. * Although not shown here, one can also define linear transfer functions
  156. *   by Laplace transform formulas or by frequency response tables.
  157. E1      10 0    TABLE {V(4,5)*1e3}      (-5v,0v 5v,5v)
  158. RE1     10 comp_out     200     ; Output series resistance
  159. CCOMP   comp_out   0    20pf    ; Output load capacitance
  160.  
  161. * Power supply for digital circuits.  We use the library digital power
  162. * supply subcircuit.
  163. XDIGPWR  0 DPWR 0   DIGIFPWR   PARAMS: VOLTAGE = 5V
  164.  
  165. * The Digital Simulation option simulates digital components.  Instead
  166. *   of voltages and waveforms, it calculates 1's and 0's and propogation
  167. *   delays.  PSpice automatically creates interface components between
  168. *   analog and digital sections or circuitry.  Here, we drive a 74393,
  169. *   4-bit, ripple counter from the output of the comparator (XCOMP or RE1).
  170. X1  comp_out 110 QA QB QC QD DPWR 0 74393
  171.  
  172. * This is a digital stimulus which resets the counter
  173. U2 stim(1,1) DPWR 0     ; digital power supplies
  174. +       110
  175. +       IO_STM  ; use the library digital IO model for a stimulus device
  176. +       0NS     1
  177. +       40NS    0
  178.  
  179. * These commands provide print and plot output for selected voltages
  180. *   and currents.  The plots are the so-called "line printer" plots.
  181. *   That is, plots made out of characters.  To get real, high-resolution
  182. *   plots you need to use Probe; it is invoked by the .PROBE command.
  183. .PRINT DC V(4) V(5)
  184. .PLOT DC IC(Q2)
  185. .PLOT AC VCM(Q2) VCP(Q2)
  186. .PLOT NOISE INOISE ONOISE
  187. .PLOT TRAN V(4,5) V([comp_out]) D(QA) D(QB)
  188. * This .PROBE statement will save all analog and digital voltage and current
  189. * values for use by Probe.
  190. .PROBE
  191.  
  192. .LIB eval.lib   ; Read models from the library
  193.  
  194. .END
  195.  
  196.  
  197. **** Generated AtoD and DtoA Interfaces ****
  198.  
  199. *
  200. * Analog/Digital interface for node comp_out
  201. *
  202. * Moving X1.U1:CLKBAR from analog node comp_out to new digital node comp_out$AtoD
  203. X$comp_out_AtoD1 comp_out comp_out$AtoD DPWR 0 AtoD_STD
  204. +       PARAMS: CAPACITANCE=   0     
  205. *
  206. * Analog/Digital interface power supply subckt
  207. *
  208. X$DIGIFPWR 0 DIGIFPWR
  209.  
  210. .END  ;(end of AtoD and DtoA interfaces) 
  211.  
  212.  
  213.  **** CURRENT MODEL PARAMETERS FOR DEVICES REFERENCING CRES
  214.                        RC1             RC2             
  215.               R        1.00E+00        1.00E+00
  216.  
  217.  
  218.  
  219.  ****     DC TRANSFER CURVES               TEMPERATURE =   35.000 DEG C
  220.  
  221.                       MONTE CARLO NOMINAL  
  222.  
  223.  
  224.   VIN         V(4)        V(5)        
  225.  
  226.   -1.250E-01   6.363E+00  -7.954E-01
  227.   -1.200E-01   6.299E+00  -7.897E-01
  228.   -1.150E-01   6.234E+00  -7.838E-01
  229.   -1.100E-01   6.170E+00  -7.779E-01
  230.   -1.050E-01   6.105E+00  -7.719E-01
  231.   -1.000E-01   6.040E+00  -7.658E-01
  232.   -9.500E-02   5.975E+00  -7.596E-01
  233.   -9.000E-02   5.910E+00  -7.532E-01
  234.   -8.500E-02   5.845E+00  -7.467E-01
  235.   -8.000E-02   5.780E+00  -7.400E-01
  236.   -7.500E-02   5.714E+00  -7.330E-01
  237.   -7.000E-02   5.649E+00  -7.258E-01
  238.   -6.500E-02   5.583E+00  -7.183E-01
  239.   -6.000E-02   5.516E+00  -7.104E-01
  240.   -5.500E-02   5.449E+00  -7.019E-01
  241.   -5.000E-02   5.382E+00  -6.927E-01
  242.   -4.500E-02   5.313E+00  -6.824E-01
  243.   -4.000E-02   5.243E+00  -6.705E-01
  244.   -3.500E-02   5.170E+00  -6.556E-01
  245.   -3.000E-02   5.092E+00  -6.339E-01
  246.   -2.500E-02   4.981E+00  -5.766E-01
  247.   -2.000E-02   4.494E+00  -1.000E-01
  248.   -1.500E-02   3.928E+00   4.638E-01
  249.   -1.000E-02   3.355E+00   1.036E+00
  250.   -5.000E-03   2.776E+00   1.614E+00
  251.    0.000E+00   2.194E+00   2.194E+00
  252.    5.000E-03   1.613E+00   2.775E+00
  253.    1.000E-02   1.034E+00   3.353E+00
  254.    1.500E-02   4.614E-01   3.926E+00
  255.    2.000E-02  -1.033E-01   4.491E+00
  256.    2.500E-02  -5.585E-01   4.957E+00
  257.    3.000E-02  -6.056E-01   5.057E+00
  258.    3.500E-02  -6.218E-01   5.130E+00
  259.    4.000E-02  -6.315E-01   5.196E+00
  260.    4.500E-02  -6.384E-01   5.260E+00
  261.    5.000E-02  -6.437E-01   5.323E+00
  262.    5.500E-02  -6.479E-01   5.384E+00
  263.    6.000E-02  -6.514E-01   5.445E+00
  264.    6.500E-02  -6.543E-01   5.506E+00
  265.    7.000E-02  -6.569E-01   5.566E+00
  266.    7.500E-02  -6.591E-01   5.626E+00
  267.    8.000E-02  -6.611E-01   5.685E+00
  268.    8.500E-02  -6.628E-01   5.745E+00
  269.    9.000E-02  -6.644E-01   5.804E+00
  270.    9.500E-02  -6.658E-01   5.863E+00
  271.    1.000E-01  -6.671E-01   5.922E+00
  272.    1.050E-01  -6.682E-01   5.981E+00
  273.    1.100E-01  -6.693E-01   6.040E+00
  274.    1.150E-01  -6.702E-01   6.098E+00
  275.    1.200E-01  -6.711E-01   6.157E+00
  276.    1.250E-01  -6.719E-01   6.215E+00
  277.  
  278.  
  279.  
  280.  
  281.  
  282.  ****     DC TRANSFER CURVES               TEMPERATURE =   35.000 DEG C
  283.  
  284.                       MONTE CARLO NOMINAL  
  285.  
  286.  
  287.   VIN         IC(Q2)      
  288. (*)----------    2.0000E-04   4.0000E-04   6.0000E-04   8.0000E-04   1.0000E-03
  289.                        _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  290.  -1.250E-01  8.837E-04 .            .            .            .    *       .
  291.  -1.200E-01  8.833E-04 .            .            .            .    *       .
  292.  -1.150E-01  8.829E-04 .            .            .            .    *       .
  293.  -1.100E-01  8.825E-04 .            .            .            .    *       .
  294.  -1.050E-01  8.820E-04 .            .            .            .    *       .
  295.  -1.000E-01  8.816E-04 .            .            .            .    *       .
  296.  -9.500E-02  8.812E-04 .            .            .            .    *       .
  297.  -9.000E-02  8.807E-04 .            .            .            .    *       .
  298.  -8.500E-02  8.803E-04 .            .            .            .    *       .
  299.  -8.000E-02  8.798E-04 .            .            .            .    *       .
  300.  -7.500E-02  8.794E-04 .            .            .            .    *       .
  301.  -7.000E-02  8.789E-04 .            .            .            .    *       .
  302.  -6.500E-02  8.783E-04 .            .            .            .    *       .
  303.  -6.000E-02  8.778E-04 .            .            .            .    *       .
  304.  -5.500E-02  8.772E-04 .            .            .            .    *       .
  305.  -5.000E-02  8.766E-04 .            .            .            .    *       .
  306.  -4.500E-02  8.758E-04 .            .            .            .    *       .
  307.  -4.000E-02  8.750E-04 .            .            .            .    *       .
  308.  -3.500E-02  8.740E-04 .            .            .            .    *       .
  309.  -3.000E-02  8.725E-04 .            .            .            .    *       .
  310.  -2.500E-02  8.686E-04 .            .            .            .   *        .
  311.  -2.000E-02  8.356E-04 .            .            .            . *          .
  312.  -1.500E-02  7.967E-04 .            .            .            *            .
  313.  -1.000E-02  7.572E-04 .            .            .         *  .            .
  314.  -5.000E-03  7.173E-04 .            .            .       *    .            .
  315.   0.000E+00  6.772E-04 .            .            .    *       .            .
  316.   5.000E-03  6.371E-04 .            .            . *          .            .
  317.   1.000E-02  5.972E-04 .            .            *            .            .
  318.   1.500E-02  5.576E-04 .            .         *  .            .            .
  319.   2.000E-02  5.186E-04 .            .       *    .            .            .
  320.   2.500E-02  4.862E-04 .            .     *      .            .            .
  321.   3.000E-02  4.793E-04 .            .    *       .            .            .
  322.   3.500E-02  4.743E-04 .            .    *       .            .            .
  323.   4.000E-02  4.698E-04 .            .    *       .            .            .
  324.   4.500E-02  4.654E-04 .            .   *        .            .            .
  325.   5.000E-02  4.610E-04 .            .   *        .            .            .
  326.   5.500E-02  4.569E-04 .            .   *        .            .            .
  327.   6.000E-02  4.528E-04 .            .  *         .            .            .
  328.   6.500E-02  4.485E-04 .            .  *         .            .            .
  329.   7.000E-02  4.442E-04 .            .  *         .            .            .
  330.   7.500E-02  4.402E-04 .            .  *         .            .            .
  331.   8.000E-02  4.362E-04 .            . *          .            .            .
  332.   8.500E-02  4.320E-04 .            . *          .            .            .
  333.   9.000E-02  4.278E-04 .            . *          .            .            .
  334.   9.500E-02  4.238E-04 .            . *          .            .            .
  335.   1.000E-01  4.199E-04 .            .*           .            .            .
  336.   1.050E-01  4.157E-04 .            .*           .            .            .
  337.   1.100E-01  4.115E-04 .            .*           .            .            .
  338.   1.150E-01  4.076E-04 .            *            .            .            .
  339.   1.200E-01  4.037E-04 .            *            .            .            .
  340.   1.250E-01  3.995E-04 .            *            .            .            .
  341.                        - - - - - - - - - - - - - - - - - - - - - - - - - - - 
  342.  
  343.  
  344.  
  345.  
  346.  
  347.  ****     SMALL SIGNAL BIAS SOLUTION       TEMPERATURE =   35.000 DEG C
  348.  
  349.                       MONTE CARLO NOMINAL  
  350.  
  351.  
  352.  NODE   VOLTAGE     NODE   VOLTAGE     NODE   VOLTAGE     NODE   VOLTAGE
  353.  
  354.  
  355. (    2)    -.0081  (    3)    -.0081  (    4)    2.1942  (    5)    2.1942      
  356.  
  357. (    6)    -.7606  (    7)  -11.2320  (   10)    2.5000  (  100)    0.0000      
  358.  
  359. (  101)   12.0000  (  102)  -12.0000  ( DPWR)    5.0000  ($G_DGND)-5.000E-12    
  360.  
  361. ($G_DPWR)    5.0000                   (comp_out)    2.5000                      
  362.  
  363. (XDIGPWR.REF)    0.0000               (X$DIGIFPWR.REF)-5.000E-12            
  364.  
  365.  
  366.  
  367.  DGTL NODE : STATE  DGTL NODE : STATE  DGTL NODE : STATE  DGTL NODE : STATE
  368.  
  369.  
  370. (      QA) : 0     (      QB) : 0     (      QC) : 0     (      QD) : 0         
  371.  
  372. (     110) : 1     (   $D_HI) : 1     (   $D_NC) : Z     (X1.CLRBAR) : 0        
  373.  
  374. (X1.QA_BUF) : 0    (X1.QB_BUF) : 0    (X1.QC_BUF) : 0    (X1.QD_BUF) : 0        
  375.  
  376. (comp_out$AtoD) : 1                   
  377.  
  378.  
  379.  
  380.  
  381.     VOLTAGE SOURCE CURRENTS
  382.     NAME         CURRENT
  383.  
  384.     VIN         -8.108E-06
  385.     VCC         -2.516E-03
  386.     VEE          2.532E-03
  387.     XDIGPWR.VDPWR  -5.000E-06
  388.     XDIGPWR.VDGND   0.000E+00
  389.     X$DIGIFPWR.VDPWR  -5.000E-06
  390.     X$DIGIFPWR.VDGND  -5.000E-06
  391.  
  392.     TOTAL POWER DISSIPATION   6.06E-02  WATTS
  393.  
  394.  
  395.  
  396.  
  397.  ****     OPERATING POINT INFORMATION      TEMPERATURE =   35.000 DEG C
  398.  
  399.                       MONTE CARLO NOMINAL  
  400.  
  401.  
  402.  
  403.  
  404.  
  405. **** VOLTAGE-CONTROLLED VOLTAGE SOURCES
  406.  
  407.  
  408. NAME         E1        
  409. V-SOURCE     2.500E+00
  410. I-SOURCE    -2.500E-12
  411.  
  412.  
  413. **** BIPOLAR JUNCTION TRANSISTORS
  414.  
  415.  
  416. NAME         Q1          Q2          Q3          Q4        
  417. MODEL        QNL         QNL         QNL         QNL       
  418. IB           8.11E-06    8.11E-06    1.42E-05    1.42E-05 
  419. IC           6.77E-04    6.77E-04    1.37E-03    1.13E-03 
  420. VBE          7.52E-01    7.52E-01    7.68E-01    7.68E-01 
  421. VBC         -2.20E+00   -2.20E+00   -1.05E+01    0.00E+00 
  422. VCE          2.95E+00    2.95E+00    1.12E+01    7.68E-01 
  423. BETADC       8.35E+01    8.35E+01    9.68E+01    8.00E+01 
  424. GM           2.55E-02    2.55E-02    5.16E-02    4.27E-02 
  425. RPI          3.28E+03    3.28E+03    1.87E+03    1.87E+03 
  426. RX           1.00E+02    1.00E+02    1.00E+02    1.00E+02 
  427. RO           7.71E+04    7.71E+04    4.41E+04    4.41E+04 
  428. CBE          1.28E-11    1.28E-11    2.06E-11    1.80E-11 
  429. CBC          1.28E-12    1.28E-12    8.20E-13    2.01E-12 
  430. CBX          0.00E+00    0.00E+00    0.00E+00    0.00E+00 
  431. CJS          2.00E-12    2.00E-12    2.00E-12    2.00E-12 
  432. BETAAC       8.35E+01    8.35E+01    9.67E+01    8.00E+01 
  433. FT           2.89E+08    2.89E+08    3.83E+08    3.40E+08 
  434.  
  435.  
  436.  
  437.  
  438.  
  439.  
  440.  ****     SMALL-SIGNAL CHARACTERISTICS
  441.  
  442.  
  443.       V(5)/VIN =  1.162E+02
  444.  
  445.       INPUT RESISTANCE AT VIN =  8.738E+03
  446.  
  447.       OUTPUT RESISTANCE AT V(5) =  1.332E+04
  448.  
  449.  
  450.  
  451.  ****     NOISE ANALYSIS                   TEMPERATURE =   35.000 DEG C
  452.  
  453.                       MONTE CARLO NOMINAL  
  454.  
  455.  
  456.      FREQUENCY =  1.000E+05 HZ
  457.  
  458.  
  459.  
  460.  
  461.  **** DIGITAL OUTPUT SQUARED NOISE VOLTAGES (SQ V/HZ)
  462.  
  463.  
  464.  
  465.  
  466.       X$comp_out_AtoD1.O0
  467.  
  468.  TOTAL  0.000E+00
  469.  
  470.  
  471.  
  472.  **** TRANSISTOR SQUARED NOISE VOLTAGES (SQ V/HZ)
  473.  
  474.  
  475.  
  476.  
  477.              Q1         Q2         Q3         Q4
  478.  
  479.  RB       2.096E-14  2.102E-14  2.026E-13  2.018E-13
  480.  
  481.  RC       0.000E+00  0.000E+00  0.000E+00  0.000E+00
  482.  
  483.  RE       0.000E+00  0.000E+00  0.000E+00  0.000E+00
  484.  
  485.  IB       3.450E-14  4.331E-14  8.354E-15  3.078E-15
  486.  
  487.  IC       7.136E-15  7.569E-15  2.233E-14  2.562E-14
  488.  
  489.  FN       0.000E+00  0.000E+00  0.000E+00  0.000E+00
  490.  
  491.  TOTAL    6.259E-14  7.190E-14  2.332E-13  2.305E-13
  492.  
  493.  
  494.  
  495.  **** RESISTOR SQUARED NOISE VOLTAGES (SQ V/HZ)
  496.  
  497.  
  498.  
  499.  
  500.              RS1        RS2        RC1        RC2      RBIAS        RE1
  501.  
  502.  TOTAL    2.096E-13  2.102E-13  5.796E-18  1.964E-16  6.003E-17  0.000E+00
  503.  
  504.  
  505.  
  506.  
  507.       XDIGPWR.R1 XDIGPWR.R2 XDIGPWR.R3X$DIGIFPWR.R1X$DIGIFPWR.R2X$DIGIFPWR.R3
  508.  
  509.  TOTAL    0.000E+00  0.000E+00  0.000E+00  0.000E+00  0.000E+00  0.000E+00
  510.  
  511.  
  512.  
  513.  
  514.  
  515.  **** TOTAL OUTPUT NOISE VOLTAGE         =  1.018E-12 SQ V/HZ
  516.  
  517.                                          =  1.009E-06 V/RT HZ
  518.  
  519.       TRANSFER FUNCTION VALUE:
  520.  
  521.         V(5)/VIN                    =  1.110E+02
  522.  
  523.       EQUIVALENT INPUT NOISE AT VIN =  9.093E-09 V/RT HZ
  524.  
  525.  
  526.  
  527.  ****     NOISE ANALYSIS                   TEMPERATURE =   35.000 DEG C
  528.  
  529.                       MONTE CARLO NOMINAL  
  530.  
  531.  
  532.      FREQUENCY =  1.000E+08 HZ
  533.  
  534.  
  535.  
  536.  
  537.  **** DIGITAL OUTPUT SQUARED NOISE VOLTAGES (SQ V/HZ)
  538.  
  539.  
  540.  
  541.  
  542.       X$comp_out_AtoD1.O0
  543.  
  544.  TOTAL  0.000E+00
  545.  
  546.  
  547.  
  548.  **** TRANSISTOR SQUARED NOISE VOLTAGES (SQ V/HZ)
  549.  
  550.  
  551.  
  552.  
  553.              Q1         Q2         Q3         Q4
  554.  
  555.  RB       8.467E-21  1.383E-19  2.347E-17  2.398E-17
  556.  
  557.  RC       0.000E+00  0.000E+00  0.000E+00  0.000E+00
  558.  
  559.  RE       0.000E+00  0.000E+00  0.000E+00  0.000E+00
  560.  
  561.  IB       1.066E-19  4.913E-19  1.130E-18  3.428E-19
  562.  
  563.  IC       1.114E-18  4.808E-18  9.088E-18  6.890E-18
  564.  
  565.  FN       0.000E+00  0.000E+00  0.000E+00  0.000E+00
  566.  
  567.  TOTAL    1.229E-18  5.437E-18  3.369E-17  3.121E-17
  568.  
  569.  
  570.  
  571.  **** RESISTOR SQUARED NOISE VOLTAGES (SQ V/HZ)
  572.  
  573.  
  574.  
  575.  
  576.              RS1        RS2        RC1        RC2      RBIAS        RE1
  577.  
  578.  TOTAL    8.467E-20  1.383E-18  2.404E-20  7.661E-20  1.614E-20  0.000E+00
  579.  
  580.  
  581.  
  582.  
  583.       XDIGPWR.R1 XDIGPWR.R2 XDIGPWR.R3X$DIGIFPWR.R1X$DIGIFPWR.R2X$DIGIFPWR.R3
  584.  
  585.  TOTAL    0.000E+00  0.000E+00  0.000E+00  0.000E+00  0.000E+00  0.000E+00
  586.  
  587.  
  588.  
  589.  
  590.  
  591.  **** TOTAL OUTPUT NOISE VOLTAGE         =  7.315E-17 SQ V/HZ
  592.  
  593.                                          =  8.553E-09 V/RT HZ
  594.  
  595.       TRANSFER FUNCTION VALUE:
  596.  
  597.         V(5)/VIN                    =  7.054E-02
  598.  
  599.       EQUIVALENT INPUT NOISE AT VIN =  1.212E-07 V/RT HZ
  600.  
  601.  
  602.  
  603.  ****     AC ANALYSIS                      TEMPERATURE =   35.000 DEG C
  604.  
  605.                       MONTE CARLO NOMINAL  
  606.  
  607.  
  608.  LEGEND:
  609.  
  610. *: VCM(Q2)
  611. +: VCP(Q2)
  612.  
  613.   FREQ        VCM(Q2)     
  614.  
  615.  
  616. (*)----------    1.0000E-03   1.0000E-01   1.0000E+01   1.0000E+03   1.0000E+05
  617. (+)----------   -2.0000E+02  -1.0000E+02   0.0000E+00   1.0000E+02   2.0000E+02
  618.                        _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  619.   1.000E+05  1.110E+02 .            .          + .      *     .            .
  620.   1.259E+05  1.082E+02 .            .         +  .      *     .            .
  621.   1.585E+05  1.043E+02 .            .         +  .      *     .            .
  622.   1.995E+05  9.876E+01 .            .        +   .      *     .            .
  623.   2.512E+05  9.160E+01 .            .       +    .      *     .            .
  624.   3.162E+05  8.288E+01 .            .      +     .     *      .            .
  625.   3.981E+05  7.304E+01 .            .     +      .     *      .            .
  626.   5.012E+05  6.278E+01 .            .    +       .     *      .            .
  627.   6.310E+05  5.281E+01 .            .    +       .    *       .            .
  628.   7.943E+05  4.366E+01 .            .   +        .    *       .            .
  629.   1.000E+06  3.564E+01 .            .  +         .   *        .            .
  630.   1.259E+06  2.883E+01 .            .  +         .  *         .            .
  631.   1.585E+06  2.320E+01 .            . +          .  *         .            .
  632.   1.995E+06  1.859E+01 .            . +          . *          .            .
  633.   2.512E+06  1.486E+01 .            . +          . *          .            .
  634.   3.162E+06  1.186E+01 .            .+           .*           .            .
  635.   3.981E+06  9.447E+00 .            .+           *            .            .
  636.   5.012E+06  7.509E+00 .            .+           *            .            .
  637.   6.310E+06  5.953E+00 .            +           *.            .            .
  638.   7.943E+06  4.701E+00 .            +          * .            .            .
  639.   1.000E+07  3.694E+00 .           +.          * .            .            .
  640.   1.259E+07  2.880E+00 .          + .         *  .            .            .
  641.   1.585E+07  2.222E+00 .          + .        *   .            .            .
  642.   1.995E+07  1.687E+00 .         +  .       *    .            .            .
  643.   2.512E+07  1.252E+00 .       +    .       *    .            .            .
  644.   3.162E+07  9.014E-01 .      +     .      *     .            .            .
  645.   3.981E+07  6.231E-01 .    +       .     *      .            .            .
  646.   5.012E+07  4.087E-01 .   +        .   *        .            .            .
  647.   6.310E+07  2.505E-01 .            .  *         .            .        +   .
  648.   7.943E+07  1.404E-01 .            .*           .            .      +     .
  649.   1.000E+08  7.054E-02 .            *            .            .  +         .
  650.   1.259E+08  3.691E-02 .          * .            .         +  .            .
  651.   1.585E+08  3.312E-02 .         *  .            .  +         .            .
  652.   1.995E+08  3.630E-02 .          * .          + .            .            .
  653.   2.512E+08  3.626E-02 .          * .        +   .            .            .
  654.   3.162E+08  3.327E-02 .         *  .      +     .            .            .
  655.   3.981E+08  2.889E-02 .         *  .     +      .            .            .
  656.   5.012E+08  2.425E-02 .         *  .    +       .            .            .
  657.   6.310E+08  1.993E-02 .        *   .   +        .            .            .
  658.   7.943E+08  1.618E-02 .       *    .   +        .            .            .
  659.   1.000E+09  1.303E-02 .       *    .  +         .            .            .
  660.   1.259E+09  1.044E-02 .      *     .  +         .            .            .
  661.   1.585E+09  8.336E-03 .     *      . +          .            .            .
  662.   1.995E+09  6.645E-03 .     *      . +          .            .            .
  663.   2.512E+09  5.290E-03 .    *       . +          .            .            .
  664.   3.162E+09  4.208E-03 .    *       . +          .            .            .
  665.   3.981E+09  3.345E-03 .   *        . +          .            .            .
  666.   5.012E+09  2.659E-03 .  *         . +          .            .            .
  667.   6.310E+09  2.113E-03 .  *         . +          .            .            .
  668.   7.943E+09  1.679E-03 . *          . +          .            .            .
  669.   1.000E+10  1.334E-03 .*           .+           .            .            .
  670.                        - - - - - - - - - - - - - - - - - - - - - - - - - - - 
  671.  
  672.  
  673.  
  674.  
  675.  
  676.  ****     AC ANALYSIS                      TEMPERATURE =   35.000 DEG C
  677.  
  678.                       MONTE CARLO NOMINAL  
  679.  
  680.  
  681.  LEGEND:
  682.  
  683. *: INOISE
  684. +: ONOISE
  685.  
  686.   FREQ        INOISE      
  687.  
  688.  
  689. (*)----------    1.0000E-09   1.0000E-08   1.0000E-07   1.0000E-06   1.0000E-05
  690. (+)----------    1.0000E-11   1.0000E-09   1.0000E-07   1.0000E-05   1.0000E-03
  691.                        _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  692.   1.000E+05  9.093E-09 .            *            .      +     .            .
  693.   1.259E+05  9.198E-09 .            *            .      +     .            .
  694.   1.585E+05  9.362E-09 .            *            .      +     .            .
  695.   1.995E+05  9.615E-09 .            *            .      +     .            .
  696.   2.512E+05  1.000E-08 .            .*           .      +     .            .
  697.   3.162E+05  1.059E-08 .            .*           .      +     .            .
  698.   3.981E+05  1.144E-08 .            .*           .     +      .            .
  699.   5.012E+05  1.266E-08 .            . *          .     +      .            .
  700.   6.310E+05  1.435E-08 .            .  *         .     +      .            .
  701.   7.943E+05  1.662E-08 .            .  *         .     +      .            .
  702.   1.000E+06  1.954E-08 .            .   *        .     +      .            .
  703.   1.259E+06  2.317E-08 .            .    *       .     +      .            .
  704.   1.585E+06  2.748E-08 .            .     *      .     +      .            .
  705.   1.995E+06  3.235E-08 .            .      *     .     +      .            .
  706.   2.512E+06  3.753E-08 .            .       *    .    +       .            .
  707.   3.162E+06  4.265E-08 .            .        *   .    +       .            .
  708.   3.981E+06  4.734E-08 .            .        *   .    +       .            .
  709.   5.012E+06  5.131E-08 .            .         *  .   +        .            .
  710.   6.310E+06  5.445E-08 .            .         *  .   +        .            .
  711.   7.943E+06  5.680E-08 .            .         *  .  +         .            .
  712.   1.000E+07  5.852E-08 .            .         *  .  +         .            .
  713.   1.259E+07  5.980E-08 .            .          * . +          .            .
  714.   1.585E+07  6.084E-08 .            .          * .+           .            .
  715.   1.995E+07  6.182E-08 .            .          * .+           .            .
  716.   2.512E+07  6.296E-08 .            .          * +            .            .
  717.   3.162E+07  6.454E-08 .            .          *+.            .            .
  718.   3.981E+07  6.702E-08 .            .          X .            .            .
  719.   5.012E+07  7.117E-08 .            .         + *.            .            .
  720.   6.310E+07  7.863E-08 .            .        +  *.            .            .
  721.   7.943E+07  9.292E-08 .            .       +    *            .            .
  722.   1.000E+08  1.212E-07 .            .      +     . *          .            .
  723.   1.259E+08  1.534E-07 .            .    +       .  *         .            .
  724.   1.585E+08  1.167E-07 .            .   +        .*           .            .
  725.   1.995E+08  7.610E-08 .            .  +        *.            .            .
  726.   2.512E+08  5.671E-08 .            .  +      *  .            .            .
  727.   3.162E+08  4.735E-08 .            . +      *   .            .            .
  728.   3.981E+08  4.247E-08 .            .+       *   .            .            .
  729.   5.012E+08  3.976E-08 .            +       *    .            .            .
  730.   6.310E+08  3.819E-08 .            +       *    .            .            .
  731.   7.943E+08  3.725E-08 .           +.       *    .            .            .
  732.   1.000E+09  3.666E-08 .          + .       *    .            .            .
  733.   1.259E+09  3.629E-08 .          + .       *    .            .            .
  734.   1.585E+09  3.606E-08 .         +  .       *    .            .            .
  735.   1.995E+09  3.591E-08 .        +   .       *    .            .            .
  736.   2.512E+09  3.582E-08 .        +   .       *    .            .            .
  737.   3.162E+09  3.576E-08 .       +    .       *    .            .            .
  738.   3.981E+09  3.572E-08 .       +    .       *    .            .            .
  739.   5.012E+09  3.569E-08 .      +     .       *    .            .            .
  740.   6.310E+09  3.568E-08 .     +      .       *    .            .            .
  741.   7.943E+09  3.567E-08 .     +      .       *    .            .            .
  742.   1.000E+10  3.566E-08 .    +       .       *    .            .            .
  743.                        - - - - - - - - - - - - - - - - - - - - - - - - - - - 
  744.  
  745.  
  746.  
  747.  
  748.  
  749.  ****     INITIAL TRANSIENT SOLUTION       TEMPERATURE =   35.000 DEG C
  750.  
  751.                       MONTE CARLO NOMINAL  
  752.  
  753.  
  754.  NODE   VOLTAGE     NODE   VOLTAGE     NODE   VOLTAGE     NODE   VOLTAGE
  755.  
  756.  
  757. (    2)    -.0081  (    3)    -.0081  (    4)    2.1942  (    5)    2.1942      
  758.  
  759. (    6)    -.7606  (    7)  -11.2320  (   10)    2.5000  (  100)    0.0000      
  760.  
  761. (  101)   12.0000  (  102)  -12.0000  ( DPWR)    5.0000  ($G_DGND)-5.000E-12    
  762.  
  763. ($G_DPWR)    5.0000                   (comp_out)    2.5000                      
  764.  
  765. (XDIGPWR.REF)    0.0000               (X$DIGIFPWR.REF)-5.000E-12            
  766.  
  767.  
  768.  
  769.  DGTL NODE : STATE  DGTL NODE : STATE  DGTL NODE : STATE  DGTL NODE : STATE
  770.  
  771.  
  772. (      QA) : 0     (      QB) : 0     (      QC) : 0     (      QD) : 0         
  773.  
  774. (     110) : 1     (   $D_HI) : 1     (   $D_NC) : Z     (X1.CLRBAR) : 0        
  775.  
  776. (X1.QA_BUF) : 0    (X1.QB_BUF) : 0    (X1.QC_BUF) : 0    (X1.QD_BUF) : 0        
  777.  
  778. (comp_out$AtoD) : 1                   
  779.  
  780.  
  781.  
  782.  
  783.     VOLTAGE SOURCE CURRENTS
  784.     NAME         CURRENT
  785.  
  786.     VIN         -8.108E-06
  787.     VCC         -2.516E-03
  788.     VEE          2.532E-03
  789.     XDIGPWR.VDPWR  -5.000E-06
  790.     XDIGPWR.VDGND   0.000E+00
  791.     X$DIGIFPWR.VDPWR  -5.000E-06
  792.     X$DIGIFPWR.VDGND  -5.000E-06
  793.  
  794.     TOTAL POWER DISSIPATION   6.06E-02  WATTS
  795.  
  796.  
  797.  
  798.  
  799.  ****     TRANSIENT ANALYSIS               TEMPERATURE =   35.000 DEG C
  800.  
  801.                       MONTE CARLO NOMINAL  
  802.  
  803.  
  804.  LEGEND:
  805.  
  806. *: V(4,5)
  807. +: V(comp_out)
  808. =: D(QA)
  809. $: D(QB)
  810.  
  811.   TIME        V(4,5)      
  812. (*)----------   -1.0000E+01  -3.3333E+00   3.3333E+00   1.0000E+01
  813. (+)----------   -2.0000E+00   6.6667E-01   3.3333E+00   6.0000E+00
  814.                        _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  815.   0.000E+00  2.283E-13 .            .      *  +  .            . =    $     .
  816.   2.000E-08 -4.071E-02 .         +  .      *     .            . =    $     .
  817.   4.000E-08 -1.901E-01 .         +  .      *     .            . =    $     .
  818.   6.000E-08 -4.456E-01 .         +  .     *      .            . =    $     .
  819.   8.000E-08 -8.049E-01 .         +  .    *       .            . =    $     .
  820.   1.000E-07 -1.253E+00 .         +  .   *        .            . =    $     .
  821.   1.200E-07 -1.746E+00 .         +  .   *        .            . =    $     .
  822.   1.400E-07 -2.312E+00 .         +  . *          .            . =    $     .
  823.   1.600E-07 -2.898E+00 .         +  .*           .            . =    $     .
  824.   1.800E-07 -3.484E+00 .         +  *            .            . =    $     .
  825.   2.000E-07 -4.105E+00 .         + *.            .            . =    $     .
  826.   2.200E-07 -4.719E+00 .         +* .            .            . =    $     .
  827.   2.400E-07 -5.300E+00 .        *+  .            .            . =    $     .
  828.   2.600E-07 -5.758E+00 .       * +  .            .            . =    $     .
  829.   2.800E-07 -6.048E+00 .       * +  .            .            . =    $     .
  830.   3.000E-07 -6.224E+00 .       * +  .            .            . =    $     .
  831.   3.200E-07 -6.308E+00 .      *  +  .            .            . =    $     .
  832.   3.400E-07 -6.344E+00 .      *  +  .            .            . =    $     .
  833.   3.600E-07 -6.354E+00 .      *  +  .            .            . =    $     .
  834.   3.800E-07 -6.338E+00 .      *  +  .            .            . =    $     .
  835.   4.000E-07 -6.276E+00 .      *  +  .            .            . =    $     .
  836.   4.200E-07 -6.194E+00 .       * +  .            .            . =    $     .
  837.   4.400E-07 -6.112E+00 .       * +  .            .            . =    $     .
  838.   4.600E-07 -6.017E+00 .       * +  .            .            . =    $     .
  839.   4.800E-07 -5.790E+00 .       * +  .            .            . =    $     .
  840.   5.000E-07 -5.564E+00 .        *+  .            .            . =    $     .
  841.   5.200E-07 -5.338E+00 .        *+  .            .            . =    $     .
  842.   5.400E-07 -5.092E+00 .         X  .            .            . =    $     .
  843.   5.600E-07 -4.550E+00 .         +* .            .            . =    $     .
  844.   5.800E-07 -4.007E+00 .         + *.            .            . =    $     .
  845.   6.000E-07 -3.465E+00 .         +  *            .            . =    $     .
  846.   6.200E-07 -2.922E+00 .         +  .*           .            . =    $     .
  847.   6.400E-07 -2.319E+00 .         +  . *          .            . =    $     .
  848.   6.600E-07 -1.518E+00 .         +  .   *        .            . =    $     .
  849.   6.800E-07 -6.855E-01 .         +  .     *      .            . =    $     .
  850.   7.000E-07  1.738E-01 .            .      *    +.            . =    $     .
  851.   7.200E-07  1.035E+00 .            .        *   .        +   . =    $     .
  852.   7.400E-07  1.877E+00 .            .          * .        +   . =    $     .
  853.   7.600E-07  2.669E+00 .            .           *.        +   . =    $     .
  854.   7.800E-07  3.413E+00 .            .            .*       +   . =    $     .
  855.   8.000E-07  4.044E+00 .            .            . *      +   . =    $     .
  856.   8.200E-07  4.676E+00 .            .            .  *     +   . =    $     .
  857.   8.400E-07  5.230E+00 .            .            .   *    +   . =    $     .
  858.   8.600E-07  5.647E+00 .            .            .    *   +   . =    $     .
  859.   8.800E-07  5.849E+00 .            .            .     *  +   . =    $     .
  860.   9.000E-07  6.027E+00 .            .            .     *  +   . =    $     .
  861.   9.200E-07  6.085E+00 .            .            .     *  +   . =    $     .
  862.   9.400E-07  6.032E+00 .            .            .     *  +   . =    $     .
  863.   9.600E-07  5.942E+00 .            .            .     *  +   . =    $     .
  864.   9.800E-07  5.826E+00 .            .            .     *  +   . =    $     .
  865.   1.000E-06  5.582E+00 .            .            .    *   +   . =    $     .
  866.   1.020E-06  5.338E+00 .            .            .    *   +   . =    $     .
  867.   1.040E-06  5.091E+00 .            .            .   *    +   . =    $     .
  868.   1.060E-06  4.586E+00 .            .            .  *     +   . =    $     .
  869.   1.080E-06  4.081E+00 .            .            . *      +   . =    $     .
  870.   1.100E-06  3.576E+00 .            .            .*       +   . =    $     .
  871.   1.120E-06  2.978E+00 .            .            *        +   . =    $     .
  872.   1.140E-06  2.208E+00 .            .          * .        +   . =    $     .
  873.   1.160E-06  1.439E+00 .            .         *  .        +   . =    $     .
  874.   1.180E-06  6.699E-01 .            .       *    .        +   . =    $     .
  875.   1.200E-06 -1.204E-01 .            .      *    +.            . =    $     .
  876.   1.220E-06 -9.780E-01 .         +  .    *       .            .   =  $     .
  877.   1.240E-06 -1.817E+00 .         +  .  *         .            .   =  $     .
  878.   1.260E-06 -2.619E+00 .         +  . *          .            .   =  $     .
  879.   1.280E-06 -3.368E+00 .         +  *            .            .   =  $     .
  880.   1.300E-06 -4.024E+00 .         + *.            .            .   =  $     .
  881.   1.320E-06 -4.661E+00 .         +* .            .            .   =  $     .
  882.   1.340E-06 -5.168E+00 .         X  .            .            .   =  $     .
  883.   1.360E-06 -5.595E+00 .        *+  .            .            .   =  $     .
  884.   1.380E-06 -5.868E+00 .       * +  .            .            .   =  $     .
  885.   1.400E-06 -5.986E+00 .       * +  .            .            .   =  $     .
  886.   1.420E-06 -6.005E+00 .       * +  .            .            .   =  $     .
  887.   1.440E-06 -5.957E+00 .       * +  .            .            .   =  $     .
  888.   1.460E-06 -5.883E+00 .       * +  .            .            .   =  $     .
  889.   1.480E-06 -5.776E+00 .       * +  .            .            .   =  $     .
  890.   1.500E-06 -5.570E+00 .        *+  .            .            .   =  $     .
  891.   1.520E-06 -5.365E+00 .        *+  .            .            .   =  $     .
  892.   1.540E-06 -5.042E+00 .         X  .            .            .   =  $     .
  893.   1.560E-06 -4.557E+00 .         +* .            .            .   =  $     .
  894.   1.580E-06 -4.072E+00 .         + *.            .            .   =  $     .
  895.   1.600E-06 -3.587E+00 .         +  *            .            .   =  $     .
  896.   1.620E-06 -3.004E+00 .         +  .*           .            .   =  $     .
  897.   1.640E-06 -2.233E+00 .         +  .  *         .            .   =  $     .
  898.   1.660E-06 -1.461E+00 .         +  .   *        .            .   =  $     .
  899.   1.680E-06 -6.903E-01 .         +  .     *      .            .   =  $     .
  900.   1.700E-06  1.445E-01 .            .      *   + .            .   =  $     .
  901.   1.720E-06  1.007E+00 .            .        *   .        +   .   =  $     .
  902.   1.740E-06  1.851E+00 .            .          * .        +   .   =  $     .
  903.   1.760E-06  2.644E+00 .            .           *.        +   .   =  $     .
  904.   1.780E-06  3.364E+00 .            .            .*       +   .   =  $     .
  905.   1.800E-06  4.008E+00 .            .            . *      +   .   =  $     .
  906.   1.820E-06  4.652E+00 .            .            .  *     +   .   =  $     .
  907.   1.840E-06  5.218E+00 .            .            .   *    +   .   =  $     .
  908.   1.860E-06  5.627E+00 .            .            .    *   +   .   =  $     .
  909.   1.880E-06  5.851E+00 .            .            .     *  +   .   =  $     .
  910.   1.900E-06  5.990E+00 .            .            .     *  +   .   =  $     .
  911.   1.920E-06  6.092E+00 .            .            .     *  +   .   =  $     .
  912.   1.940E-06  6.043E+00 .            .            .     *  +   .   =  $     .
  913.   1.960E-06  5.945E+00 .            .            .     *  +   .   =  $     .
  914.   1.980E-06  5.748E+00 .            .            .    *   +   .   =  $     .
  915.   2.000E-06  5.550E+00 .            .            .    *   +   .   =  $     .
  916.   2.020E-06  5.352E+00 .            .            .    *   +   .   =  $     .
  917.   2.040E-06  4.929E+00 .            .            .   *    +   .   =  $     .
  918.   2.060E-06  4.500E+00 .            .            .  *     +   .   =  $     .
  919.   2.080E-06  4.071E+00 .            .            . *      +   .   =  $     .
  920.   2.100E-06  3.591E+00 .            .            .*       +   .   =  $     .
  921.   2.120E-06  2.905E+00 .            .            *        +   .   =  $     .
  922.   2.140E-06  2.218E+00 .            .          * .        +   .   =  $     .
  923.   2.160E-06  1.513E+00 .            .         *  .        +   .   =  $     .
  924.   2.180E-06  6.827E-01 .            .       *    .        +   .   =  $     .
  925.   2.200E-06 -1.641E-01 .            .      X     .            .   =  $     .
  926.   2.220E-06 -1.019E+00 .         +  .    *       .            . =      $   .
  927.   2.240E-06 -1.856E+00 .         +  .  *         .            . =      $   .
  928.   2.260E-06 -2.656E+00 .         +  . *          .            . =      $   .
  929.   2.280E-06 -3.398E+00 .         +  *            .            . =      $   .
  930.   2.300E-06 -4.055E+00 .         + *.            .            . =      $   .
  931.   2.320E-06 -4.657E+00 .         +* .            .            . =      $   .
  932.   2.340E-06 -5.203E+00 .         X  .            .            . =      $   .
  933.   2.360E-06 -5.616E+00 .        *+  .            .            . =      $   .
  934.   2.380E-06 -5.806E+00 .       * +  .            .            . =      $   .
  935.   2.400E-06 -5.991E+00 .       * +  .            .            . =      $   .
  936.   2.420E-06 -6.007E+00 .       * +  .            .            . =      $   .
  937.   2.440E-06 -5.975E+00 .       * +  .            .            . =      $   .
  938.   2.460E-06 -5.861E+00 .       * +  .            .            . =      $   .
  939.   2.480E-06 -5.747E+00 .        *+  .            .            . =      $   .
  940.   2.500E-06 -5.591E+00 .        *+  .            .            . =      $   .
  941.   2.520E-06 -5.310E+00 .        *+  .            .            . =      $   .
  942.   2.540E-06 -5.030E+00 .         X  .            .            . =      $   .
  943.   2.560E-06 -4.678E+00 .         +* .            .            . =      $   .
  944.   2.580E-06 -4.139E+00 .         + *.            .            . =      $   .
  945.   2.600E-06 -3.600E+00 .         +  *            .            . =      $   .
  946.   2.620E-06 -3.010E+00 .         +  .*           .            . =      $   .
  947.   2.640E-06 -2.231E+00 .         +  .  *         .            . =      $   .
  948.   2.660E-06 -1.453E+00 .         +  .   *        .            . =      $   .
  949.   2.680E-06 -6.747E-01 .         +  .     *      .            . =      $   .
  950.   2.700E-06  1.348E-01 .            .      *  +  .            . =      $   .
  951.   2.720E-06  9.982E-01 .            .        *   .        +   . =      $   .
  952.   2.740E-06  1.843E+00 .            .          * .        +   . =      $   .
  953.   2.760E-06  2.642E+00 .            .           *.        +   . =      $   .
  954.   2.780E-06  3.356E+00 .            .            .*       +   . =      $   .
  955.   2.800E-06  4.015E+00 .            .            . *      +   . =      $   .
  956.   2.820E-06  4.674E+00 .            .            .  *     +   . =      $   .
  957.   2.840E-06  5.210E+00 .            .            .   *    +   . =      $   .
  958.   2.860E-06  5.638E+00 .            .            .    *   +   . =      $   .
  959.   2.880E-06  5.886E+00 .            .            .     *  +   . =      $   .
  960.   2.900E-06  6.025E+00 .            .            .     *  +   . =      $   .
  961.   2.920E-06  6.024E+00 .            .            .     *  +   . =      $   .
  962.   2.940E-06  6.024E+00 .            .            .     *  +   . =      $   .
  963.   2.960E-06  5.945E+00 .            .            .     *  +   . =      $   .
  964.   2.980E-06  5.758E+00 .            .            .     *  +   . =      $   .
  965.   3.000E-06  5.572E+00 .            .            .    *   +   . =      $   .
  966.   3.020E-06  5.307E+00 .            .            .    *   +   . =      $   .
  967.   3.040E-06  4.901E+00 .            .            .   *    +   . =      $   .
  968.   3.060E-06  4.495E+00 .            .            .  *     +   . =      $   .
  969.   3.080E-06  4.089E+00 .            .            . *      +   . =      $   .
  970.   3.100E-06  3.592E+00 .            .            .*       +   . =      $   .
  971.   3.120E-06  2.915E+00 .            .            *        +   . =      $   .
  972.   3.140E-06  2.239E+00 .            .          * .        +   . =      $   .
  973.   3.160E-06  1.525E+00 .            .         *  .        +   . =      $   .
  974.   3.180E-06  6.949E-01 .            .       *    .        +   . =      $   .
  975.   3.200E-06 -1.524E-01 .            .      X     .            . =      $   .
  976.   3.220E-06 -1.008E+00 .         +  .    *       .            .   =    $   .
  977.   3.240E-06 -1.845E+00 .         +  .  *         .            .   =    $   .
  978.   3.260E-06 -2.647E+00 .         +  . *          .            .   =    $   .
  979.   3.280E-06 -3.386E+00 .         +  *            .            .   =    $   .
  980.   3.300E-06 -4.069E+00 .         + *.            .            .   =    $   .
  981.   3.320E-06 -4.606E+00 .         +* .            .            .   =    $   .
  982.   3.340E-06 -5.103E+00 .         X  .            .            .   =    $   .
  983.   3.360E-06 -5.582E+00 .        *+  .            .            .   =    $   .
  984.   3.380E-06 -5.733E+00 .        *+  .            .            .   =    $   .
  985.   3.400E-06 -5.884E+00 .       * +  .            .            .   =    $   .
  986.   3.420E-06 -6.025E+00 .       * +  .            .            .   =    $   .
  987.   3.440E-06 -5.978E+00 .       * +  .            .            .   =    $   .
  988.   3.460E-06 -5.894E+00 .       * +  .            .            .   =    $   .
  989.   3.480E-06 -5.788E+00 .       * +  .            .            .   =    $   .
  990.   3.500E-06 -5.598E+00 .        *+  .            .            .   =    $   .
  991.   3.520E-06 -5.381E+00 .        *+  .            .            .   =    $   .
  992.   3.540E-06 -4.974E+00 .         X  .            .            .   =    $   .
  993.   3.560E-06 -4.566E+00 .         +* .            .            .   =    $   .
  994.   3.580E-06 -4.158E+00 .         + *.            .            .   =    $   .
  995.   3.600E-06 -3.618E+00 .         +  *            .            .   =    $   .
  996.   3.620E-06 -2.913E+00 .         +  .*           .            .   =    $   .
  997.   3.640E-06 -2.207E+00 .         +  .  *         .            .   =    $   .
  998.   3.660E-06 -1.501E+00 .         +  .   *        .            .   =    $   .
  999.   3.680E-06 -6.743E-01 .         +  .     *      .            .   =    $   .
  1000.   3.700E-06  1.852E-01 .            .      *     +            .   =    $   .
  1001.   3.720E-06  1.046E+00 .            .        *   .        +   .   =    $   .
  1002.   3.740E-06  1.887E+00 .            .          * .        +   .   =    $   .
  1003.   3.760E-06  2.693E+00 .            .           *.        +   .   =    $   .
  1004.   3.780E-06  3.418E+00 .            .            .*       +   .   =    $   .
  1005.   3.800E-06  4.116E+00 .            .            . *      +   .   =    $   .
  1006.   3.820E-06  4.658E+00 .            .            .  *     +   .   =    $   .
  1007.   3.840E-06  5.200E+00 .            .            .   *    +   .   =    $   .
  1008.   3.860E-06  5.651E+00 .            .            .    *   +   .   =    $   .
  1009.   3.880E-06  5.919E+00 .            .            .     *  +   .   =    $   .
  1010.   3.900E-06  6.063E+00 .            .            .     *  +   .   =    $   .
  1011.   3.920E-06  6.088E+00 .            .            .     *  +   .   =    $   .
  1012.   3.940E-06  6.050E+00 .            .            .     *  +   .   =    $   .
  1013.   3.960E-06  5.959E+00 .            .            .     *  +   .   =    $   .
  1014.   3.980E-06  5.794E+00 .            .            .     *  +   .   =    $   .
  1015.   4.000E-06  5.573E+00 .            .            .    *   +   .   =    $   .
  1016.   4.020E-06  5.352E+00 .            .            .    *   +   .   =    $   .
  1017.   4.040E-06  4.999E+00 .            .            .   *    +   .   =    $   .
  1018.   4.060E-06  4.501E+00 .            .            .  *     +   .   =    $   .
  1019.   4.080E-06  4.003E+00 .            .            . *      +   .   =    $   .
  1020.   4.100E-06  3.505E+00 .            .            .*       +   .   =    $   .
  1021.   4.120E-06  3.007E+00 .            .            *        +   .   =    $   .
  1022.   4.140E-06  2.281E+00 .            .           *.        +   .   =    $   .
  1023.   4.160E-06  1.497E+00 .            .         *  .        +   .   =    $   .
  1024.   4.180E-06  6.661E-01 .            .       *    .        +   .   =    $   .
  1025.   4.200E-06 -1.854E-01 .            .     +*     .            .   =    $   .
  1026.   4.220E-06 -1.039E+00 .         +  .    *       .            . =    $     .
  1027.   4.240E-06 -1.875E+00 .         +  .  *         .            . =    $     .
  1028.   4.260E-06 -2.676E+00 .         +  . *          .            . =    $     .
  1029.   4.280E-06 -3.412E+00 .         +  *            .            . =    $     .
  1030.   4.300E-06 -4.089E+00 .         + *.            .            . =    $     .
  1031.   4.320E-06 -4.637E+00 .         +* .            .            . =    $     .
  1032.   4.340E-06 -5.127E+00 .         X  .            .            . =    $     .
  1033.   4.360E-06 -5.602E+00 .        *+  .            .            . =    $     .
  1034.   4.380E-06 -5.751E+00 .       * +  .            .            . =    $     .
  1035.   4.400E-06 -5.901E+00 .       * +  .            .            . =    $     .
  1036.   4.420E-06 -6.028E+00 .       * +  .            .            . =    $     .
  1037.   4.440E-06 -5.984E+00 .       * +  .            .            . =    $     .
  1038.   4.460E-06 -5.910E+00 .       * +  .            .            . =    $     .
  1039.   4.480E-06 -5.778E+00 .       * +  .            .            . =    $     .
  1040.   4.500E-06 -5.638E+00 .        *+  .            .            . =    $     .
  1041.   4.520E-06 -5.347E+00 .        *+  .            .            . =    $     .
  1042.   4.540E-06 -5.037E+00 .         X  .            .            . =    $     .
  1043.   4.560E-06 -4.727E+00 .         +* .            .            . =    $     .
  1044.   4.580E-06 -4.162E+00 .         + *.            .            . =    $     .
  1045.   4.600E-06 -3.572E+00 .         +  *            .            . =    $     .
  1046.   4.620E-06 -2.982E+00 .         +  .*           .            . =    $     .
  1047.   4.640E-06 -2.304E+00 .         +  . *          .            . =    $     .
  1048.   4.660E-06 -1.502E+00 .         +  .   *        .            . =    $     .
  1049.   4.680E-06 -6.695E-01 .         +  .     *      .            . =    $     .
  1050.   4.700E-06  1.891E-01 .            .      *     +            . =    $     .
  1051.   4.720E-06  1.049E+00 .            .        *   .        +   . =    $     .
  1052.   4.740E-06  1.889E+00 .            .          * .        +   . =    $     .
  1053.   4.760E-06  2.693E+00 .            .           *.        +   . =    $     .
  1054.   4.780E-06  3.397E+00 .            .            .*       +   . =    $     .
  1055.   4.800E-06  4.079E+00 .            .            . *      +   . =    $     .
  1056.   4.820E-06  4.733E+00 .            .            .  *     +   . =    $     .
  1057.   4.840E-06  5.236E+00 .            .            .   *    +   . =    $     .
  1058.   4.860E-06  5.672E+00 .            .            .    *   +   . =    $     .
  1059.   4.880E-06  5.940E+00 .            .            .     *  +   . =    $     .
  1060.   4.900E-06  6.085E+00 .            .            .     *  +   . =    $     .
  1061.   4.920E-06  6.101E+00 .            .            .     *  +   . =    $     .
  1062.   4.940E-06  6.045E+00 .            .            .     *  +   . =    $     .
  1063.   4.960E-06  5.954E+00 .            .            .     *  +   . =    $     .
  1064.   4.980E-06  5.801E+00 .            .            .     *  +   . =    $     .
  1065.   5.000E-06  5.649E+00 .            .            .    *   +   . =    $     .
  1066.                        - - - - - - - - - - - - - - - - - - - - - - - - - - - 
  1067.  
  1068.  
  1069.  
  1070.  
  1071.  
  1072.  ****     FOURIER ANALYSIS                 TEMPERATURE =   35.000 DEG C
  1073.  
  1074.                       MONTE CARLO NOMINAL  
  1075.  
  1076.  
  1077. FOURIER COMPONENTS OF TRANSIENT RESPONSE V(5)
  1078.  
  1079.  
  1080.  
  1081.  DC COMPONENT =   2.215456E+00
  1082.  
  1083.  HARMONIC   FREQUENCY    FOURIER    NORMALIZED    PHASE        NORMALIZED
  1084.     NO         (HZ)     COMPONENT    COMPONENT    (DEG)       PHASE (DEG)
  1085.  
  1086.      1     1.000E+06    3.124E+00    1.000E+00   -6.961E+01    0.000E+00
  1087.      2     2.000E+06    8.154E-02    2.610E-02    1.641E+02    2.337E+02
  1088.      3     3.000E+06    1.139E-01    3.646E-02    1.127E+02    1.823E+02
  1089.      4     4.000E+06    9.740E-03    3.118E-03    1.680E+02    2.376E+02
  1090.      5     5.000E+06    6.365E-03    2.038E-03   -1.549E+02   -8.524E+01
  1091.      6     6.000E+06    2.168E-02    6.939E-03   -1.129E+02   -4.325E+01
  1092.      7     7.000E+06    2.444E-02    7.823E-03   -1.125E+02   -4.290E+01
  1093.      8     8.000E+06    2.050E-02    6.562E-03   -1.010E+02   -3.137E+01
  1094.      9     9.000E+06    1.201E-02    3.845E-03   -1.322E+02   -6.254E+01
  1095.  
  1096.  
  1097.      TOTAL HARMONIC DISTORTION =   4.681765E+00 PERCENT
  1098.  
  1099.  
  1100.  
  1101.  ****     SORTED DEVIATIONS OF V(4,5)      TEMPERATURE =   35.000 DEG C
  1102.  
  1103.                       MONTE CARLO SUMMARY
  1104.  
  1105.  
  1106.  
  1107.  
  1108. Mean Deviation =    -.5773
  1109. Sigma          =     .1181
  1110.  
  1111.  RUN                    MAX DEVIATION FROM NOMINAL
  1112.  
  1113. Pass    3                .695   (5.88 sigma)  lower   at VIN =    -.02  
  1114.                         (  84.873% of Nominal)
  1115.  
  1116. Pass    2                .6839  (5.79 sigma)  lower   at VIN =     .055 
  1117.                         ( 111.34% of Nominal)
  1118.  
  1119. Pass    4                .5174  (4.38 sigma)  lower   at VIN =     .015 
  1120.                         ( 114.93% of Nominal)
  1121.  
  1122. Pass    5                .4129  (3.50 sigma)  lower   at VIN =    -.045 
  1123.                         (  93.113% of Nominal)
  1124.  
  1125.  
  1126.  
  1127.           JOB CONCLUDED
  1128.  
  1129.  
  1130.  
  1131.  ****     JOB STATISTICS SUMMARY
  1132.  
  1133.  
  1134.  
  1135.  
  1136.   NUNODS  NCNODS  NUMNOD   NUMEL  DIODES    BJTS   JFETS   MFETS GASFETS
  1137.  
  1138.       12      17      21      35       0       4       0       0       0
  1139.  
  1140. NDIGITAL   NSTOP   NTTAR   NTTBR   NTTOV   IFILL    IOPS  PERSPA
  1141.  
  1142.        7      29      84      89      78       5     143  89.417
  1143.  
  1144.   NUMTTP  NUMRTP  NUMNIT   DIGTP  DIGEVT  DIGEVL      MEMUSE
  1145.  
  1146.      564     155    2387      83     176     150       41040
  1147.  
  1148.                                  SECONDS      ITERATIONS
  1149.  
  1150.  
  1151.           MATRIX SOLUTION           5.03               6
  1152.  
  1153.           MATRIX LOAD              12.27
  1154.  
  1155.           DIGITAL SIMULATION        1.08
  1156.  
  1157.  
  1158.           READIN                    1.25
  1159.  
  1160.           SETUP                      .05
  1161.  
  1162.           DC SWEEP                  1.72             177
  1163.  
  1164.           BIAS POINT                 .28              20
  1165.  
  1166.           AC and NOISE              2.00              51
  1167.  
  1168.           TRANSIENT ANALYSIS       26.30            2387
  1169.  
  1170.           OUTPUT                    2.90
  1171.  
  1172.           MONTE CARLO               5.77
  1173.  
  1174.           TOTAL JOB TIME           39.43
  1175.